AddRange(Object[]) Method
In This Topic
Adds an array of objects to the collection. This methods clears the collection before adding new items. Don't use it if you want to keep preexisting items.
Syntax
'Declaration
Public Overloads Sub AddRange( _
ByVal () As Object _
)
public void AddRange(
object[]
)
Parameters
- items
- An array of items.
See Also